home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / languages / c / _desklibsm / h / core < prev    next >
Encoding:
Text File  |  1993-05-26  |  253 b   |  18 lines

  1. #ifndef __dl_core_h
  2. #define __dl_core_h
  3. #ifndef BOOL
  4. #define BOOL  int
  5. #define FALSE 0
  6. #define TRUE  1
  7. #define ERROR   1
  8. #define NOERROR 0
  9. #endif
  10. #ifndef NULL
  11. #define NULL 0
  12. #endif
  13. typedef struct {
  14.  int  errnum; 
  15.  char errmess[252]; 
  16. } os_error;
  17. #endif
  18.